home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1997 October / Designer's Club 1997 October.iso / mac / Idea Source™ / Main.DIR / 00012_Script_12 < prev    next >
Text File  |  1997-08-23  |  897b  |  32 lines

  1. on exitFrame
  2.   go the frame
  3.   if rollover(2) then
  4.     set the visible of sprite 7 to true
  5.     set the visible of sprite 8 to true
  6.     set the visible of sprite 9 to true
  7.     set the visible of sprite 6 to false
  8.     updatestage
  9.   end if
  10.   if rollover(3) then
  11.     set the visible of sprite 6 to true
  12.     set the visible of sprite 8 to true
  13.     set the visible of sprite 9 to true
  14.     set the visible of sprite 7 to false
  15.     updatestage
  16.   end if
  17.   if rollover(4) then
  18.     set the visible of sprite 7 to true
  19.     set the visible of sprite 6 to true
  20.     set the visible of sprite 9 to true
  21.     set the visible of sprite 8 to false
  22.     updatestage
  23.   end if
  24.   if rollover(5) then
  25.     set the visible of sprite 7 to true
  26.     set the visible of sprite 8 to true
  27.     set the visible of sprite 6 to true
  28.     set the visible of sprite 9 to false
  29.     updatestage
  30.   end if
  31.   
  32. end